Move documentation to inline comments: GtkRadioAction
authorJavier Jardón <jjardon@gnome.org>
Sat, 15 May 2010 22:26:22 +0000 (00:26 +0200)
committerJavier Jardón <jjardon@gnome.org>
Sat, 15 May 2010 22:26:22 +0000 (00:26 +0200)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkradioaction.sgml [deleted file]
gtk/gtkradioaction.c

index c30497604f244e578f9658feb4adb72c1c708a44..102a012dac7632c994e998dead1ce57b6c265839 100644 (file)
@@ -6,6 +6,7 @@ gtkmessagedialog.sgml
 gtkobject.sgml
 gtkorientable.sgml
 gtkpagesetupunixdialog.sgml
+gtkradioaction.sgml
 gtkrecentaction.sgml
 gtkseparator.sgml
 gtktesting.sgml
diff --git a/docs/reference/gtk/tmpl/gtkradioaction.sgml b/docs/reference/gtk/tmpl/gtkradioaction.sgml
deleted file mode 100644 (file)
index c3ccf4e..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkRadioAction
-
-<!-- ##### SECTION Short_Description ##### -->
-An action of which only one in a group can be active
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-A #GtkRadioAction is similar to #GtkRadioMenuItem. A number of radio
-actions can be linked together so that only one may be active at any 
-one time.
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkRadioAction ##### -->
-<para>
-The <structname>GtkRadioAction</structname> struct contains 
-only private members and should not be accessed directly.
-</para>
-
-
-<!-- ##### SIGNAL GtkRadioAction::changed ##### -->
-<para>
-
-</para>
-
-@radioaction: the object which received the signal.
-@arg1: 
-
-<!-- ##### ARG GtkRadioAction:current-value ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkRadioAction:group ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkRadioAction:value ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_radio_action_new ##### -->
-<para>
-
-</para>
-
-@name: 
-@label: 
-@tooltip: 
-@stock_id: 
-@value: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_radio_action_get_group ##### -->
-<para>
-
-</para>
-
-@action: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_radio_action_set_group ##### -->
-<para>
-
-</para>
-
-@action: 
-@group: 
-
-
-<!-- ##### FUNCTION gtk_radio_action_get_current_value ##### -->
-<para>
-
-</para>
-
-@action: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_radio_action_set_current_value ##### -->
-<para>
-
-</para>
-
-@action: 
-@current_value: 
-
-
index e76ff76106a5449a279cd620c04b6e118955ffee..d6363ed1e17d132c6e79ee9e90f28f112dbae1b6 100644 (file)
 #include "gtkprivate.h"
 #include "gtkalias.h"
 
+
+/**
+ * SECTION:gtkradioaction
+ * @Short_description: An action of which only one in a group can be active
+ * @Title: GtkRadioAction
+ *
+ * A #GtkRadioAction is similar to #GtkRadioMenuItem. A number of radio
+ * actions can be linked together so that only one may be active at any
+ * one time.
+ */
+
+
 #define GTK_RADIO_ACTION_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_RADIO_ACTION, GtkRadioActionPrivate))
 
 struct _GtkRadioActionPrivate